4bd061c62121caa4d5ab9e2c1fdf845da06449d8,basiclti/basiclti-common/src/java/org/sakaiproject/basiclti/util/SakaiCASAUtil.java,SakaiCASAUtil,getCASAEntry,#String#,59

Before Change


		// TODO: Fix this 
		use.setIcon_url("https://www.apereo.org/sites/all/themes/apereo/images/apereo-logo-white-bg.png");
		use.setTitle(theTool.getTitle());
		use.setText(theTool.getDescription());
		use.addContact(new Contact(cnf.getService_owner_owner_name(), cnf.getService_owner_support_email()));

		Original orig = new Original(use);

After Change


		use.setIcon_url("https://www.apereo.org/sites/all/themes/apereo/images/apereo-logo-white-bg.png");
		use.setTitle(theTool.getTitle());

		String desc = theTool.getDescription();
		if ( desc == null ) desc = theTool.getTitle();
		if ( desc == null ) desc = "";
                String note = ServerConfigurationService.getString("casa.provider.note", null);
		if ( note != null ) {